home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 34.zip / BS1 part 34 / Aztec C 5.0a disk 1.adf / include / exec / types.h < prev   
C/C++ Source or Header  |  1989-11-05  |  793b  |  38 lines

  1. #ifndef    EXEC_TYPES_H
  2. #define    EXEC_TYPES_H
  3. #define    GLOBAL    extern
  4. #define    IMPORT    extern
  5. #define    STATIC    static
  6. #define    REGISTER    register
  7. #define    VOID    void
  8. typedef    long    LONG;
  9. typedef    unsigned    long    ULONG;
  10. typedef    unsigned    long    LONGBITS;
  11. typedef    short    WORD;
  12. typedef    unsigned    short    UWORD;
  13. typedef    unsigned    short    WORDBITS;
  14. typedef    char    BYTE;
  15. typedef    unsigned    char    UBYTE;
  16. typedef    unsigned    char    BYTEBITS;
  17. typedef    unsigned    char    *STRPTR;
  18. typedef    STRPTR    *APTR;
  19. typedef    ULONG    CPTR;
  20. typedef    short    SHORT;
  21. typedef    unsigned    short    USHORT;
  22. typedef    float    FLOAT;
  23. typedef    double    DOUBLE;
  24. typedef    short    COUNT;
  25. typedef    unsigned    short    UCOUNT;
  26. typedef    short    BOOL;
  27. typedef    unsigned    char    TEXT;
  28. #define    TRUE    1L
  29. #define    FALSE    0L
  30.  
  31. #ifndef NULL
  32. #define    NULL    0L
  33. #endif
  34.  
  35. #define    BYTEMASK    0xFFL
  36. #define    LIBRARY_VERSION    34L
  37. #endif
  38.